Changeset 128
- Timestamp:
- 02/13/06 21:33:34 (3 years ago)
- Files:
-
- fastphoto/trunk/configure.ac (modified) (1 diff)
- fastphoto/trunk/get_epeg_cvs.sh (added)
- fastphoto/trunk/src/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fastphoto/trunk/configure.ac
r125 r128 117 117 # Checks for library functions. 118 118 119 PKG_CONFIG_PATH=$PWD/epeg:$PKG_CONFIG_PATH 120 PKG_CHECK_MODULES(EPEG, epeg, HAVE_EPEG=yes, 121 AC_MSG_ERROR([ 122 123 could not find Epeg. please update PKG_CONFIG_PATH to point to Epeg's source 124 folder or run ./get_epeg_cvs.sh 125 ]) 126 ) 127 AC_SUBST(EPEG_CFLAGS) 128 AC_SUBST(EPEG_LIBS) 129 130 119 131 dnl 120 132 dnl Configuration tests complete -- provide summary of results. fastphoto/trunk/src/Makefile.am
r125 r128 1 1 # Process this file with automake to produce Makefile.in 2 2 3 INCLUDES = -I/usr/local/include 4 EPEG_LIBS = -L/usr/local/lib -lepeg 3 AM_CFLAGS = $(EPEG_CFLAGS) 5 4 6 5 bin_PROGRAMS = fastphoto
