Changeset 3858
- Timestamp:
- May 5, 2005, 3:07:33 PM (21 years ago)
- Location:
- trunk/psModules
- Files:
-
- 1 added
- 6 deleted
- 2 edited
-
Makefile.cvs (modified) (1 diff)
-
autogen.sh (added)
-
config.guess (deleted)
-
config.sub (deleted)
-
configure.ac (modified) (2 diffs)
-
depcomp (deleted)
-
install-sh (deleted)
-
missing (deleted)
-
mkinstalldirs (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/Makefile.cvs
r3228 r3858 2 2 3 3 all: 4 if [ "`which glibtoolize `" != "" ] ; then glibtoolize --force ; else libtoolize --force ; fi5 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 9 9 -
trunk/psModules/configure.ac
r3675 r3858 1 AC_ INIT([psmodule],[0.5.1],[http://www.pan-starrs.org/bugzilla])1 AC_PREREQ(2.59) 2 2 3 AM_CONFIG_HEADER(src/config.h) 4 AM_INIT_AUTOMAKE(psmodule, 0.5.1) 3 AC_INIT([psmodule],[0.5.1],[http://pan-starrs.ifa.hawaii.edu/bugzilla]) 4 AC_CONFIG_SRCDIR([psmodule.pc.in]) 5 6 AM_INIT_AUTOMAKE([1.6 foreign dist-bzip2]) 7 AM_CONFIG_HEADER([src/config.h]) 8 AM_MAINTAINER_MODE 5 9 6 10 AC_LANG(C) … … 47 51 LDFLAGS="${LDFLAGS=} ${PSLIB_LIBS}" 48 52 49 dnl Check the libraries to see if they exist, etc.50 AC_CHECK_LIB(pslib,main,,AC_MSG_ERROR(psLib library required))51 52 53 CFLAGS="${CFLAGS=} -Wall -Werror" 53 54 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]) 55 AC_CONFIG_FILES([ 56 Makefile 57 src/Makefile 58 test/Makefile 59 Doxyfile 60 psmodule-config 61 psmodule.pc 62 ]) 60 63 61 64 AC_OUTPUT
Note:
See TracChangeset
for help on using the changeset viewer.
