INCLUDES = -I/usr/local/include -I/usr/local/include/cc++2
(생략)...
------------
그리고 configure.in에서 제가 프로그램 안에 넣은 헤더파일을 확인하게
하려고 AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)를
넣었습니다.
그런데 aclocal, autoconf, automake, ./configure를 차례로 실행하면,
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
라는 메세지가 출력되더군요.
하지만 Makefile.am에 INCLUDES가 지정되어서인지 make를 하면 정상적으로
컴파일이 이루어 집니다.
제가 뭔가 잘못쓰는 것 같아서요. 어떻게 해야 하나요?
추가)
./configure --includedir=/usr/local/include/usr/local/include/cc++2
이렇게 실행해도 출력되는 메시지는 똑같네요.
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
그리고 configure.in에서 제가 프로그램 안에 넣은 헤더파일을 확인하게
하려고 AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)를
넣었습니다.
그런데 aclocal, autoconf, automake, ./configure를 차례로 실행하면,
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
라는 메세지가 출력되더군요.
하지만 Makefile.am에 INCLUDES가 지정되어서인지 make를 하면 정상적으로
컴파일이 이루어 집니다.
제가 뭔가 잘못쓰는 것 같아서요. 어떻게 해야 하나요?
예, 잘못 쓰고 계신 겁니다.
AC_CHECK_HEADERS macro는 자신이 만든 header파일에 대해서
하는 것이 아니라, target platform에 원하는 header 파일이
있는지를 체크해 주는 macro입니다.
e.g) AC_CHEC_HEADERS(inttypes.h)
이렇게 하면 inttypes.h가 있는지를 체크하고
있으면 config.h에 #define HAVE_INTTYPES_H 1
을 해 주고 없으면 define하지 않습니다.
서지원 wrote..
그런 경우에는, 아마도
CFLAGS=-I/usr/local/include ./configure
정도를 하면 일단 configure script에서는
yes라고(/usr/local/include/cc++/common.h가 있다면..)
나오긴 할 듯 합니다..
말씀하신대로 해도 결과는 마찬가지네요.
no라고 나오는 군요. 물론 config.cache를 지웠구요.
참고로 제가 작성한 파일을 보여드립니다.
설치되었는지 확인하고 싶은 헤더파일들
-----------
/usr/local/include/cc++2/cc++/common.h
/usr/local/include/cc++2/cc++/unix.h
/usr/include/g++-2/iostream
/usr/include/g++-2/cstdlib
-----------
configure.in
-----------
dnl Process this file with autoconf to produce a configure script.
AC_INIT(unixsocket_test_cl.cc)
AM_INIT_AUTOMAKE(unixsocket_test_cl, 0.1)
dnl Checks for programs.
AC_PROG_CXX
AC_PROG_CXXCPP
AM_PROG_LIBTOOL
dnl Checks for libraries.
dnl Checks for header files.
AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)
dnl Checks for typedefs, structures, and compiler characteristics.
$ ls
Makefile.am configure.in unixsocket_test_cl.cc
$ aclocal
$ autoconf
$ automake --add-missing
automake Makefile.am installing `./INSTALL'
automake Makefile.am required file `./NEWS' not found
automake Makefile.am required file `./README' not found
automake Makefile.am installing `./COPYING'
automake Makefile.am required file `./AUTHORS' not found
automake Makefile.am required file `./ChangeLog' not found
$ ./configure
...(생략)
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
updating cache ./config.cache
creating ./config.status
creating Makefile
$
Re: [질문] automake를 사용할 때 include 디렉토리는 ...
보통 include path 는 c compiler에 option으로
cc -I/usr/local/include ... ... some_more_options ...
이런 식으로 지정을 합니다.
automake에서는 INCLUDES라는 variable에 대입을 하면,
automake이 알아서 처리해 줍니다.
즉 Makefile.am 파일 안에
INCLUDES = -I/usr/local/include 식으로
지정을 해 주면 됩니다.
Re: [질문] automake를 사용할 때 include 디렉토리는 ...
보통은 그런 부분에 있어서는,
./configure --includedir=/usr/local/include
를 사용하는게 정석이 아닐까 생각해봅니다.
물론, 특정 시스템에만, 설치할꺼라면 상관없습니다만.
Re^2: [다시질문] automake를 사용할 때 include 디렉토리는 ...
답변 고맙습니다.
제가 어떻게 했냐하면...
Makefile.am에
------------
(생략)...
INCLUDES = -I/usr/local/include -I/usr/local/include/cc++2
(생략)...
------------
그리고 configure.in에서 제가 프로그램 안에 넣은 헤더파일을 확인하게
하려고 AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)를
넣었습니다.
그런데 aclocal, autoconf, automake, ./configure를 차례로 실행하면,
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
라는 메세지가 출력되더군요.
하지만 Makefile.am에 INCLUDES가 지정되어서인지 make를 하면 정상적으로
컴파일이 이루어 집니다.
제가 뭔가 잘못쓰는 것 같아서요. 어떻게 해야 하나요?
추가)
./configure --includedir=/usr/local/include/usr/local/include/cc++2
이렇게 실행해도 출력되는 메시지는 똑같네요.
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
Re^3: [다시질문] automake를 사용할 때 include 디렉토리는 ...
(생략)...
------------
그리고 configure.in에서 제가 프로그램 안에 넣은 헤더파일을 확인하게
하려고 AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)를
넣었습니다.
그런데 aclocal, autoconf, automake, ./configure를 차례로 실행하면,
.....
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
.....
라는 메세지가 출력되더군요.
하지만 Makefile.am에 INCLUDES가 지정되어서인지 make를 하면 정상적으로
컴파일이 이루어 집니다.
제가 뭔가 잘못쓰는 것 같아서요. 어떻게 해야 하나요?
예, 잘못 쓰고 계신 겁니다.
AC_CHECK_HEADERS macro는 자신이 만든 header파일에 대해서
하는 것이 아니라, target platform에 원하는 header 파일이
있는지를 체크해 주는 macro입니다.
e.g) AC_CHEC_HEADERS(inttypes.h)
이렇게 하면 inttypes.h가 있는지를 체크하고
있으면 config.h에 #define HAVE_INTTYPES_H 1
을 해 주고 없으면 define하지 않습니다.
Re^4: [다시질문] automake를 사용할 때 include 디렉토리는 ...
서지원 wrote..
AC_CHECK_HEADERS macro는 자신이 만든 header파일에 대해서
하는 것이 아니라, target platform에 원하는 header 파일이
있는지를 체크해 주는 macro입니다.
제가 GNU CommonC++ package를 사용해서 프로그램을 작성하고
있습니다. 일단 /usr/local에 설치해서 프로그램하고 있구요.
그래서 target platform에 제가 원하는 패키지(GNU CommonC++)가
깔려있는지, 즉 헤더 화일이 사용가능한지 확인하려고
AC_CHECK_HEADERS()를 사용하게 된 것입니다.
질문을 다르게 해보면,
"AC_CHECK_HEADERS macro에서 헤더파일을 찾을 때 사용하는 경로는
어떻게 지정하는가"가 되겠네요.
Re^5: [다시질문] automake를 사용할 때 include 디렉토리는 ...
그런 경우에는, 아마도
CFLAGS=-I/usr/local/include ./configure
정도를 하면 일단 configure script에서는
yes라고(/usr/local/include/cc++/common.h가 있다면..)
나오긴 할 듯 합니다..
초보 wrote..
서지원 wrote..
AC_CHECK_HEADERS macro는 자신이 만든 header파일에 대해서
하는 것이 아니라, target platform에 원하는 header 파일이
있는지를 체크해 주는 macro입니다.
제가 GNU CommonC++ package를 사용해서 프로그램을 작성하고
있습니다. 일단 /usr/local에 설치해서 프로그램하고 있구요.
그래서 target platform에 제가 원하는 패키지(GNU CommonC++)가
깔려있는지, 즉 헤더 화일이 사용가능한지 확인하려고
AC_CHECK_HEADERS()를 사용하게 된 것입니다.
질문을 다르게 해보면,
"AC_CHECK_HEADERS macro에서 헤더파일을 찾을 때 사용하는 경로는
어떻게 지정하는가"가 되겠네요.
Re^6: [다시질문] automake를 사용할 때 include 디렉토리는 ...
서지원 wrote..
그런 경우에는, 아마도
CFLAGS=-I/usr/local/include ./configure
정도를 하면 일단 configure script에서는
yes라고(/usr/local/include/cc++/common.h가 있다면..)
나오긴 할 듯 합니다..
말씀하신대로 해도 결과는 마찬가지네요.
no라고 나오는 군요. 물론 config.cache를 지웠구요.
참고로 제가 작성한 파일을 보여드립니다.
설치되었는지 확인하고 싶은 헤더파일들
-----------
/usr/local/include/cc++2/cc++/common.h
/usr/local/include/cc++2/cc++/unix.h
/usr/include/g++-2/iostream
/usr/include/g++-2/cstdlib
-----------
Makefile.am
-----------
MAINTAINERCLEANFILES = Makefile.in Makefile
INCLUDES = -I/usr/local/include -I/usr/local/include/cc++2
LDADD = /usr/local/lib/libccgnu2.la -ldl
XML_LIBS = -L/usr/lib -lxml2 -lz -L/lib -lm
Z_LIBS = -lz
noinst_PROGRAMS = unixsocket_test_cl
unixsocket_test_cl_SOURCES = unixsocket_test_cl.cc
unixsocket_test_cl_LDADD = /usr/local/lib/libccext2.la $(XML_LIBS) $(Z_LIBS) $(LDADD)
unixsocket_test_cl_LDFLAGS = -pthread
-----------
configure.in
-----------
dnl Process this file with autoconf to produce a configure script.
AC_INIT(unixsocket_test_cl.cc)
AM_INIT_AUTOMAKE(unixsocket_test_cl, 0.1)
dnl Checks for programs.
AC_PROG_CXX
AC_PROG_CXXCPP
AM_PROG_LIBTOOL
dnl Checks for libraries.
dnl Checks for header files.
AC_CHECK_HEADERS(cc++/common.h cc++/unix.h iostream cstdlib)
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_OUTPUT(Makefile)
-----------
실행화면
$ ls /usr/local/include/cc++2/cc++/
cmdoptns.h exception.h groups.h objmap.h process.h socket.h url.h
common.h export.h misc.h objsync.h rtp.h strchar.h xml.h
config.h file.h numbers.h oststring.h rtpext.h template.h
counter.h ftp.h objcount.h persist.h serial.h thread.h
digest.h functions.h objlink.h pointer.h slog.h unix.h
$ ls
Makefile.am configure.in unixsocket_test_cl.cc
$ aclocal
$ autoconf
$ automake --add-missing
automake Makefile.am installing `./INSTALL'
automake Makefile.am required file `./NEWS' not found
automake Makefile.am required file `./README' not found
automake Makefile.am installing `./COPYING'
automake Makefile.am required file `./AUTHORS' not found
automake Makefile.am required file `./ChangeLog' not found
$ ./configure
...(생략)
checking for cc++/common.h... no
checking for cc++/unix.h... no
checking for iostream... no
checking for cstdlib... no
updating cache ./config.cache
creating ./config.status
creating Makefile
$
댓글 달기