IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3858


Ignore:
Timestamp:
May 5, 2005, 3:07:33 PM (21 years ago)
Author:
desonia
Message:

Bug #387 -- changes to autotools setup.

Location:
trunk/psModules
Files:
1 added
6 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/Makefile.cvs

    r3228 r3858  
    22
    33all:
    4         if [ "`which glibtoolize`" != "" ] ; then glibtoolize --force ; else libtoolize --force ; fi
    5         aclocal
    6         autoheader
    7         automake
    8         autoconf
     4        if [ "`which glibtoolize 2> /dev/null`" != "" ] ; then glibtoolize --force ; else libtoolize --force ; fi
     5        aclocal --force
     6        autoheader --force
     7        automake --add-missing --force
     8        autoconf --force
    99
  • trunk/psModules/configure.ac

    r3675 r3858  
    1 AC_INIT([psmodule],[0.5.1],[http://www.pan-starrs.org/bugzilla])
     1AC_PREREQ(2.59)
    22
    3 AM_CONFIG_HEADER(src/config.h)
    4 AM_INIT_AUTOMAKE(psmodule, 0.5.1)
     3AC_INIT([psmodule],[0.5.1],[http://pan-starrs.ifa.hawaii.edu/bugzilla])
     4AC_CONFIG_SRCDIR([psmodule.pc.in])
     5
     6AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2])
     7AM_CONFIG_HEADER([src/config.h])
     8AM_MAINTAINER_MODE
    59
    610AC_LANG(C)
     
    4751LDFLAGS="${LDFLAGS=} ${PSLIB_LIBS}"
    4852
    49 dnl Check the libraries to see if they exist, etc.
    50 AC_CHECK_LIB(pslib,main,,AC_MSG_ERROR(psLib library required))
    51 
    5253CFLAGS="${CFLAGS=} -Wall -Werror"
    5354
    54 AC_CONFIG_FILES([Makefile])
    55 AC_CONFIG_FILES([src/Makefile])
    56 AC_CONFIG_FILES([test/Makefile])
    57 AC_CONFIG_FILES([Doxyfile])
    58 AC_CONFIG_FILES([psmodule-config])
    59 AC_CONFIG_FILES([psmodule.pc])
     55AC_CONFIG_FILES([
     56  Makefile
     57  src/Makefile
     58  test/Makefile
     59  Doxyfile
     60  psmodule-config
     61  psmodule.pc
     62])
    6063
    6164AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.