[12454] | 1 | dnl |
---|
| 2 | dnl configure.in -- autoconf template for nmh |
---|
| 3 | dnl |
---|
[19073] | 4 | dnl $Id: configure.in,v 1.4 2003-03-23 01:16:24 ghudson Exp $ |
---|
[12454] | 5 | dnl |
---|
| 6 | |
---|
| 7 | AC_INIT(h/nmh.h) |
---|
| 8 | AC_CONFIG_HEADER(config.h) |
---|
| 9 | |
---|
| 10 | dnl What version of nmh are we building? |
---|
| 11 | VERSION=`sed -e 's/nmh-//' ${srcdir}/VERSION` |
---|
| 12 | echo "configuring for nmh-$VERSION" |
---|
| 13 | AC_SUBST(VERSION)dnl |
---|
| 14 | |
---|
| 15 | dnl ------------------------- |
---|
| 16 | dnl CHECK COMMAND LINE OPTION |
---|
| 17 | dnl ------------------------- |
---|
| 18 | dnl What method of posting should post use? |
---|
| 19 | undefine([mts])dnl |
---|
| 20 | AC_ARG_WITH(mts, |
---|
| 21 | [ --with-mts=MTS specify the mail transport agent]) |
---|
| 22 | |
---|
| 23 | if test x$with_mts = xsmtp; then |
---|
| 24 | MTS="smtp" |
---|
| 25 | MTSLIB="mts/smtp/libsmtp.a" |
---|
| 26 | AC_DEFINE(SMTPMTS)dnl |
---|
| 27 | elif test x$with_mts = xsendmail; then |
---|
| 28 | MTS="sendmail" |
---|
| 29 | MTSLIB="mts/sendmail/libsend.a" |
---|
| 30 | AC_DEFINE(SENDMTS)dnl |
---|
| 31 | else |
---|
| 32 | MTS="smtp" |
---|
| 33 | MTSLIB="mts/smtp/libsmtp.a" |
---|
| 34 | AC_DEFINE(SMTPMTS)dnl |
---|
| 35 | fi |
---|
| 36 | |
---|
| 37 | AC_SUBST(MTS) |
---|
| 38 | AC_SUBST(MTSLIB) |
---|
| 39 | |
---|
| 40 | dnl What should be the default editor? |
---|
| 41 | undefine([editor])dnl |
---|
| 42 | AC_ARG_WITH(editor, |
---|
| 43 | [ --with-editor=EDITOR specify the default editor]) |
---|
| 44 | |
---|
| 45 | if test -n "$with_editor"; then |
---|
| 46 | editorpath="$with_editor" |
---|
| 47 | fi |
---|
| 48 | |
---|
| 49 | dnl What should be the default pager? |
---|
| 50 | undefine([pager])dnl |
---|
| 51 | AC_ARG_WITH(pager, |
---|
| 52 | [ --with-pager=PAGER specify the default pager]) |
---|
| 53 | |
---|
| 54 | if test -n "$with_pager"; then |
---|
| 55 | pagerpath="$with_pager" |
---|
| 56 | fi |
---|
| 57 | |
---|
| 58 | dnl Do you want mhe support? |
---|
| 59 | undefine([nmh-mhe])dnl |
---|
| 60 | AC_ARG_ENABLE(nmh-mhe, |
---|
| 61 | [ --enable-nmh-mhe enable mhe support (DEFAULT)]) |
---|
| 62 | |
---|
| 63 | dnl mhe support is on by default, so define it unless |
---|
| 64 | dnl explicitly disabled. |
---|
| 65 | if test x$enable_nmh_mhe != xno; then |
---|
| 66 | AC_DEFINE(MHE)dnl |
---|
| 67 | fi |
---|
| 68 | |
---|
| 69 | dnl Do you want client-side support for pop |
---|
| 70 | undefine([nmh-pop])dnl |
---|
| 71 | AC_ARG_ENABLE(nmh-pop, |
---|
| 72 | [ --enable-nmh-pop enable client-side support for pop]) |
---|
| 73 | if test x$enable_nmh_pop = xyes; then |
---|
| 74 | AC_DEFINE(POP)dnl |
---|
| 75 | POPLIB=popsbr.o |
---|
| 76 | POPSED='/^%nmhbeginpop%/d;/^%nmhendpop%/d' |
---|
| 77 | else |
---|
| 78 | POPSED='/^%nmhbeginpop%/,/^%nmhendpop%/d' |
---|
| 79 | fi |
---|
| 80 | AC_SUBST(POPLIB)dnl |
---|
| 81 | AC_SUBST(POPSED)dnl |
---|
| 82 | |
---|
| 83 | dnl Do you want client-side support for kpop |
---|
| 84 | AC_ARG_WITH(krb4, |
---|
| 85 | [ --with-krb4=PREFIX specify location of Kerberos V4 for kpop support]) |
---|
| 86 | if test x$with_krb4 != x -a x$with_krb4 != xno; then |
---|
| 87 | AC_DEFINE(KPOP)dnl |
---|
| 88 | AC_DEFINE(KPOP_PRINCIPAL, "pop")dnl |
---|
| 89 | fi |
---|
| 90 | |
---|
| 91 | dnl Do you want support for hesiod |
---|
| 92 | AC_ARG_WITH(hesiod, |
---|
| 93 | [ --with-hesiod=PREFIX specify location of Hesiod]) |
---|
| 94 | if test x$with_hesiod != x -a x$with_hesiod != xno; then |
---|
| 95 | AC_DEFINE(HESIOD)dnl |
---|
| 96 | fi |
---|
| 97 | |
---|
| 98 | dnl Do you want to debug nmh? |
---|
| 99 | undefine([nmh-debug])dnl |
---|
| 100 | AC_ARG_ENABLE(nmh-debug, |
---|
| 101 | [ --enable-nmh-debug enable nmh code debugging]) |
---|
| 102 | |
---|
| 103 | dnl ---------------------------------------------------- |
---|
| 104 | dnl Default location is /usr/local/nmh/{bin,etc,lib,man} |
---|
| 105 | dnl ---------------------------------------------------- |
---|
| 106 | AC_PREFIX_DEFAULT(/usr/local/nmh) |
---|
| 107 | |
---|
| 108 | dnl ------------------ |
---|
| 109 | dnl CHECK THE COMPILER |
---|
| 110 | dnl ------------------ |
---|
| 111 | dnl We want these before the checks, |
---|
| 112 | dnl so the checks can modify their values. |
---|
| 113 | test -z "$CFLAGS" && CFLAGS= auto_cflags=1 |
---|
| 114 | if test x$enable_nmh_debug = xyes; then |
---|
| 115 | test -z "$LDFLAGS" && LDFLAGS=-g |
---|
| 116 | fi |
---|
| 117 | |
---|
| 118 | AC_PROG_CC |
---|
| 119 | |
---|
| 120 | dnl if the user hasn't specified CFLAGS, then |
---|
| 121 | dnl if compiler is gcc, then |
---|
| 122 | dnl use -O2 and some warning flags |
---|
| 123 | dnl else use -O |
---|
| 124 | if test -n "$auto_cflags"; then |
---|
| 125 | if test x$enable_nmh_debug = xyes; then |
---|
| 126 | if test -n "$GCC"; then |
---|
| 127 | test -z "$CFLAGS" && CFLAGS="-Wall -g" || CFLAGS="$CFLAGS -Wall -g" |
---|
| 128 | else |
---|
| 129 | test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g" |
---|
| 130 | fi |
---|
| 131 | else |
---|
| 132 | test -z "$LDFLAGS" && LDFLAGS=-s |
---|
| 133 | if test -n "$GCC"; then |
---|
| 134 | test -z "$CFLAGS" && CFLAGS=-O2 || CFLAGS="$CFLAGS -O2" |
---|
| 135 | else |
---|
| 136 | test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O" |
---|
| 137 | fi |
---|
| 138 | fi |
---|
| 139 | fi |
---|
| 140 | |
---|
| 141 | AC_C_CONST dnl Does compiler support `const'. |
---|
| 142 | |
---|
| 143 | dnl ------------------ |
---|
| 144 | dnl CHECK FOR PROGRAMS |
---|
| 145 | dnl ------------------ |
---|
| 146 | AC_PROG_MAKE_SET dnl Does make define $MAKE |
---|
| 147 | AC_PROG_INSTALL dnl Check for BSD compatible `install' |
---|
| 148 | AC_PROG_RANLIB dnl Check for `ranlib' |
---|
| 149 | AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk |
---|
| 150 | AC_PROG_LEX dnl Check for lex/flex |
---|
| 151 | |
---|
| 152 | dnl Check for lorder and tsort commands |
---|
| 153 | AC_CHECK_PROG(LORDER, lorder, lorder, no)dnl |
---|
| 154 | AC_CHECK_PROG(TSORT, tsort, tsort, no)dnl |
---|
| 155 | |
---|
| 156 | dnl If either doesn't exist, replace them with echo and cat |
---|
| 157 | if test x$ac_cv_prog_LORDER != xlorder -o x$ac_cv_prog_TSORT != xtsort; then |
---|
| 158 | LORDER=echo |
---|
| 159 | TSORT=cat |
---|
| 160 | AC_SUBST(LORDER)dnl |
---|
| 161 | AC_SUBST(TSORT)dnl |
---|
| 162 | fi |
---|
| 163 | |
---|
| 164 | dnl Look for `sendmail' |
---|
| 165 | pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin |
---|
| 166 | AC_PATH_PROG(sendmailpath, sendmail, no, [$pathtmp]) |
---|
| 167 | |
---|
| 168 | dnl Look for `more' |
---|
| 169 | pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin |
---|
| 170 | AC_PATH_PROG(morepath, more, no, [$pathtmp]) |
---|
| 171 | |
---|
| 172 | dnl If pager is not specified yet, |
---|
| 173 | dnl then use `more' as the default. |
---|
| 174 | if test -z "$pagerpath"; then |
---|
| 175 | pagerpath="$morepath" |
---|
| 176 | fi |
---|
| 177 | AC_SUBST(pagerpath)dnl |
---|
| 178 | |
---|
| 179 | dnl Look for `vi' |
---|
| 180 | pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin |
---|
| 181 | AC_PATH_PROG(vipath, vi, no, [$pathtmp]) |
---|
| 182 | |
---|
| 183 | dnl If editor is not specified yet, |
---|
| 184 | dnl then use `vi' as the default. |
---|
| 185 | if test -z "$editorpath"; then |
---|
| 186 | editorpath="$vipath" |
---|
| 187 | fi |
---|
| 188 | AC_SUBST(editorpath)dnl |
---|
| 189 | |
---|
| 190 | dnl Check for broken vi |
---|
| 191 | AC_CACHE_CHECK(for broken vi, nmh_cv_attvibug, |
---|
| 192 | [if echo 'r /nonexist-file |
---|
| 193 | q' | ex > /dev/null 2>&1 |
---|
| 194 | then |
---|
| 195 | nmh_cv_attvibug=no |
---|
| 196 | else |
---|
| 197 | nmh_cv_attvibug=yes |
---|
| 198 | fi]) |
---|
| 199 | |
---|
| 200 | if test "$nmh_cv_attvibug" = yes; then |
---|
| 201 | AC_DEFINE(ATTVIBUG) |
---|
| 202 | fi |
---|
| 203 | |
---|
| 204 | dnl --------------- |
---|
| 205 | dnl FIND MAIL SPOOL |
---|
| 206 | dnl --------------- |
---|
| 207 | AC_CACHE_CHECK(where mail spool is located, nmh_cv_mailspool, |
---|
| 208 | [for mailspool in /var/mail dnl |
---|
| 209 | /var/spool/mail dnl |
---|
| 210 | /usr/spool/mail dnl |
---|
| 211 | /dev/null; dnl Just in case we fall through |
---|
| 212 | do |
---|
| 213 | test -d $mailspool && break |
---|
| 214 | done |
---|
| 215 | nmh_cv_mailspool=$mailspool |
---|
| 216 | ]) |
---|
| 217 | mailspool=$nmh_cv_mailspool |
---|
| 218 | AC_SUBST(mailspool)dnl |
---|
| 219 | |
---|
| 220 | dnl ------------------ |
---|
| 221 | dnl CHECK HEADER FILES |
---|
| 222 | dnl ------------------ |
---|
| 223 | AC_HEADER_DIRENT |
---|
| 224 | AC_HEADER_STDC |
---|
| 225 | AC_HEADER_TIME |
---|
| 226 | AC_HEADER_SYS_WAIT |
---|
| 227 | AC_HEADER_STAT |
---|
| 228 | AC_CHECK_HEADERS(string.h memory.h stdlib.h unistd.h errno.h fcntl.h \ |
---|
| 229 | limits.h crypt.h termcap.h termio.h termios.h locale.h \ |
---|
| 230 | sys/param.h sys/time.h sys/utsname.h arpa/inet.h \ |
---|
[13870] | 231 | arpa/ftp.h ndbm.h db.h) |
---|
[12454] | 232 | |
---|
| 233 | AC_CACHE_CHECK(POSIX termios, nmh_cv_sys_posix_termios, |
---|
| 234 | [AC_TRY_LINK([#include <sys/types.h> |
---|
| 235 | #include <unistd.h> |
---|
| 236 | #include <termios.h>], |
---|
| 237 | [/* SunOS 4.0.3 has termios.h but not the library calls. */ |
---|
| 238 | tcgetattr(0, 0);], |
---|
| 239 | nmh_cv_sys_posix_termios=yes, nmh_cv_sys_posix_termios=no)]) |
---|
| 240 | |
---|
| 241 | if test $nmh_cv_sys_posix_termios = yes; then |
---|
| 242 | AC_CACHE_CHECK(TIOCGWINSZ in termios.h, |
---|
| 243 | nmh_cv_header_termios_h_tiocgwinsz, |
---|
| 244 | [AC_TRY_LINK([#include <sys/types.h> |
---|
| 245 | #include <termios.h>], |
---|
| 246 | [int x = TIOCGWINSZ;], |
---|
| 247 | nmh_cv_header_termios_h_tiocgwinsz=yes, |
---|
| 248 | nmh_cv_header_termios_h_tiocgwinsz=no)]) |
---|
| 249 | else |
---|
| 250 | nmh_cv_header_termios_h_tiocgwinsz=no |
---|
| 251 | fi |
---|
| 252 | |
---|
| 253 | if test $nmh_cv_header_termios_h_tiocgwinsz = no; then |
---|
| 254 | AC_CACHE_CHECK(TIOCGWINSZ in sys/ioctl.h, |
---|
| 255 | nmh_cv_header_sys_ioctl_h_tiocgwinsz, |
---|
| 256 | [AC_TRY_LINK([#include <sys/types.h> |
---|
| 257 | #include <sys/ioctl.h>], |
---|
| 258 | [int x = TIOCGWINSZ;], |
---|
| 259 | nmh_cv_header_sys_ioctl_h_tiocgwinsz=yes, |
---|
| 260 | nmh_cv_header_sys_ioctl_h_tiocgwinsz=no)]) |
---|
| 261 | if test $nmh_cv_header_sys_ioctl_h_tiocgwinsz = yes; then |
---|
| 262 | AC_DEFINE(GWINSZ_IN_SYS_IOCTL) |
---|
| 263 | fi |
---|
| 264 | fi |
---|
| 265 | |
---|
| 266 | AC_CHECK_HEADER([sys/ptem.h], AC_DEFINE(WINSIZE_IN_PTEM)) |
---|
| 267 | |
---|
| 268 | dnl --------------- |
---|
| 269 | dnl CHECK FUNCTIONS |
---|
| 270 | dnl --------------- |
---|
| 271 | AC_FUNC_VFORK |
---|
| 272 | AC_CHECK_FUNCS(waitpid wait3 sigaction sigprocmask sigblock sigsetmask \ |
---|
| 273 | sighold sigrelse writev lstat uname tzset killpg \ |
---|
| 274 | sigsetjmp) |
---|
| 275 | |
---|
| 276 | AC_REPLACE_FUNCS(snprintf strerror strdup) |
---|
| 277 | |
---|
| 278 | dnl ------------------- |
---|
| 279 | dnl CHECK FOR LIBRARIES |
---|
| 280 | dnl ------------------- |
---|
| 281 | dnl Checks for network libraries (nsl, socket) |
---|
| 282 | AC_CHECK_NETLIBS |
---|
| 283 | |
---|
| 284 | dnl Check for bug in libraries such that ruserpass |
---|
| 285 | dnl needs to be linked as _ruserpass. |
---|
| 286 | AC_CHECK_RUSERPASS |
---|
| 287 | |
---|
| 288 | termcap_curses_order="termcap curses ncurses" |
---|
| 289 | for lib in $termcap_curses_order; do |
---|
| 290 | AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break]) |
---|
| 291 | done |
---|
| 292 | AC_SUBST(TERMLIB)dnl |
---|
| 293 | |
---|
| 294 | dnl -------------- |
---|
| 295 | dnl CHECK FOR NDBM |
---|
| 296 | dnl -------------- |
---|
| 297 | dnl Checks for ndbm |
---|
| 298 | AC_CHECK_FUNC(dbm_open, , |
---|
| 299 | AC_CHECK_LIB(ndbm, dbm_open, , |
---|
[19073] | 300 | AC_CHECK_LIB(dbm, dbm_open, , |
---|
| 301 | AC_CHECK_LIB(db, __db_ndbm_open)))) |
---|
[12454] | 302 | |
---|
| 303 | dnl ---------------- |
---|
| 304 | dnl CHECK FOR HESIOD |
---|
| 305 | dnl ---------------- |
---|
| 306 | if test x$with_hesiod != x -a x$with_hesiod != xno; then |
---|
| 307 | if test x$with_hesiod != xyes; then |
---|
| 308 | HESIOD_INCLUDES="-I$with_hesiod/include" |
---|
| 309 | HESIOD_LIBS="-L$with_hesiod/lib" |
---|
| 310 | fi |
---|
| 311 | AC_CHECK_FUNC(res_send, , |
---|
| 312 | AC_CHECK_LIB(resolv, res_send)) |
---|
| 313 | AC_CHECK_LIB(hesiod, hes_resolve, [HESIOD_LIBS="$HESIOD_LIBS -lhesiod"], |
---|
| 314 | [AC_MSG_ERROR(Hesiod library not found)], $HESIOD_LIBS) |
---|
| 315 | fi |
---|
| 316 | AC_SUBST(HESIOD_INCLUDES)dnl |
---|
| 317 | AC_SUBST(HESIOD_LIBS)dnl |
---|
| 318 | |
---|
| 319 | dnl ---------------------------------- |
---|
| 320 | dnl CHECK FOR KRB4 (Kerberos4 support) |
---|
| 321 | dnl ---------------------------------- |
---|
| 322 | if test x$with_krb4 != x -a x$with_krb4 != xno; then |
---|
| 323 | if test x$with_krb4 != xyes; then |
---|
| 324 | KRB4_INCLUDES="-I$with_krb4/include" |
---|
| 325 | if test -d "$with_krb4/include/kerberosIV"; then |
---|
| 326 | KRB4_INCLUDES="$KRB4_INCLUDES -I$with_krb4/include/kerberosIV" |
---|
| 327 | fi |
---|
| 328 | KRB4_LIBS="-L$with_krb4/lib" |
---|
| 329 | elif test -d /usr/include/kerberosIV; then |
---|
| 330 | KRB4_INCLUDES="-I/usr/include/kerberosIV" |
---|
| 331 | fi |
---|
| 332 | AC_CHECK_LIB(krb4, krb_rd_req, |
---|
[13768] | 333 | [KRB4_LIBS="$KRB4_LIBS -lkrb4 -ldes425 -lkrb5 -lk5crypto -lcom_err"], |
---|
[12454] | 334 | [AC_CHECK_LIB(krb, krb_rd_req, |
---|
| 335 | [KRB4_LIBS="-lkrb -ldes"], |
---|
| 336 | [AC_MSG_ERROR(Kerberos 4 libraries not found)], |
---|
| 337 | $KRB4_LIBS -ldes)], |
---|
[13768] | 338 | $KRB4_LIBS -ldes425 -lkrb5 -lk5crypto -lcom_err) |
---|
[12454] | 339 | fi |
---|
| 340 | AC_SUBST(KRB4_INCLUDES)dnl |
---|
| 341 | AC_SUBST(KRB4_LIBS)dnl |
---|
| 342 | |
---|
| 343 | dnl --------------------- |
---|
| 344 | dnl CHECK TERMCAP LIBRARY |
---|
| 345 | dnl --------------------- |
---|
| 346 | |
---|
| 347 | dnl Add the termcap library, so that the following configure |
---|
| 348 | dnl tests will find it when it tries to link test programs. |
---|
| 349 | nmh_save_LIBS="$LIBS" |
---|
| 350 | LIBS="$TERMLIB $LIBS" |
---|
| 351 | |
---|
| 352 | dnl Checks for external variable ospeed in the termcap library. |
---|
| 353 | AC_CACHE_CHECK(if an include file defines ospeed, |
---|
| 354 | nmh_cv_decl_ospeed_include_defines, |
---|
| 355 | [AC_TRY_LINK( |
---|
| 356 | [#include <sys/types.h> |
---|
| 357 | #if HAVE_TERMIOS_H |
---|
| 358 | #include <termios.h> |
---|
| 359 | #endif |
---|
| 360 | #if HAVE_TERMCAP_H |
---|
| 361 | #include <termcap.h> |
---|
| 362 | #endif], [ospeed = 0;], |
---|
| 363 | nmh_cv_decl_ospeed_include_defines=yes, |
---|
| 364 | nmh_cv_decl_ospeed_include_defines=no)]) |
---|
| 365 | |
---|
| 366 | if test $nmh_cv_decl_ospeed_include_defines = no; then |
---|
| 367 | AC_CACHE_CHECK(if you must define ospeed, |
---|
| 368 | nmh_cv_decl_ospeed_must_define, |
---|
| 369 | [AC_TRY_LINK( ,[extern short ospeed; ospeed = 0;], |
---|
| 370 | nmh_cv_decl_ospeed_must_define=yes, |
---|
| 371 | nmh_cv_decl_ospeed_must_define=no)]) |
---|
| 372 | fi |
---|
| 373 | |
---|
| 374 | if test $nmh_cv_decl_ospeed_include_defines = yes; then |
---|
| 375 | AC_DEFINE(HAVE_OSPEED) |
---|
| 376 | elif test $nmh_cv_decl_ospeed_must_define = yes; then |
---|
| 377 | AC_DEFINE(HAVE_OSPEED) |
---|
| 378 | AC_DEFINE(MUST_DEFINE_OSPEED) |
---|
| 379 | fi |
---|
| 380 | |
---|
| 381 | dnl dnl Checks if tgetent accepts NULL and will |
---|
| 382 | dnl dnl allocate its own termcap buffer. |
---|
| 383 | dnl AC_CACHE_CHECK(if tgetent accepts NULL, |
---|
| 384 | dnl nmh_cv_func_tgetent_accepts_null, |
---|
| 385 | dnl [AC_TRY_RUN([main(){int i = tgetent((char*)0,"vt100");exit(!i || i == -1);}], |
---|
| 386 | dnl nmh_cv_func_tgetent_accepts_null=yes, |
---|
| 387 | dnl nmh_cv_func_tgetent_accepts_null=no, |
---|
| 388 | dnl nmh_cv_func_tgetent_accepts_null=no)]) |
---|
| 389 | dnl if test $nmh_cv_func_tgetent_accepts_null = yes; then |
---|
| 390 | dnl AC_DEFINE(TGETENT_ACCEPTS_NULL) |
---|
| 391 | dnl fi |
---|
| 392 | |
---|
| 393 | dnl Now put the libraries back to what it was before we |
---|
| 394 | dnl starting checking the termcap library. |
---|
| 395 | LIBS="$nmh_save_LIBS" |
---|
| 396 | |
---|
| 397 | dnl -------------- |
---|
| 398 | dnl CHECK TYPEDEFS |
---|
| 399 | dnl -------------- |
---|
| 400 | AC_TYPE_SIGNAL |
---|
| 401 | AC_TYPE_PID_T |
---|
| 402 | AC_TYPE_OFF_T |
---|
| 403 | AC_TYPE_UID_T |
---|
| 404 | AC_TYPE_MODE_T |
---|
| 405 | AC_TYPE_SIZE_T |
---|
| 406 | |
---|
| 407 | dnl Check for sigset_t. Currently I'm looking in |
---|
| 408 | dnl <sys/types.h> and <signal.h>. Others might need |
---|
| 409 | dnl to be added. |
---|
| 410 | AC_CACHE_CHECK(for sigset_t, nmh_cv_type_sigset_t, |
---|
| 411 | [AC_TRY_COMPILE( |
---|
| 412 | [#include <sys/types.h> |
---|
| 413 | #include <signal.h>], [sigset_t tempsigset;], |
---|
| 414 | nmh_cv_type_sigset_t=yes, nmh_cv_type_sigset_t=no)]) |
---|
| 415 | if test $nmh_cv_type_sigset_t = no; then |
---|
| 416 | AC_DEFINE(sigset_t, unsigned int) |
---|
| 417 | fi |
---|
| 418 | |
---|
| 419 | dnl ---------------- |
---|
| 420 | dnl CHECK STRUCTURES |
---|
| 421 | dnl ---------------- |
---|
| 422 | AC_STRUCT_ST_BLKSIZE |
---|
| 423 | |
---|
| 424 | AC_CACHE_CHECK(for tm_gmtoff in struct tm, nmh_cv_struct_tm_gmtoff, |
---|
| 425 | [AC_TRY_COMPILE( |
---|
| 426 | [#ifdef TIME_WITH_SYS_TIME |
---|
| 427 | # include <sys/time.h> |
---|
| 428 | # include <time.h> |
---|
| 429 | #else |
---|
| 430 | # ifdef TM_IN_SYS_TIME |
---|
| 431 | # include <sys/time.h> |
---|
| 432 | # else |
---|
| 433 | # include <time.h> |
---|
| 434 | # endif |
---|
| 435 | #endif], |
---|
| 436 | [struct tm temptm; temptm.tm_gmtoff = 0;], |
---|
| 437 | nmh_cv_struct_tm_gmtoff=yes, nmh_cv_struct_tm_gmtoff=no)]) |
---|
| 438 | if test $nmh_cv_struct_tm_gmtoff = yes; then |
---|
| 439 | AC_DEFINE(HAVE_TM_GMTOFF) |
---|
| 440 | fi |
---|
| 441 | |
---|
| 442 | dnl ------------- |
---|
| 443 | dnl CHECK SIGNALS |
---|
| 444 | dnl ------------- |
---|
| 445 | dnl What style of signal do you have (POSIX, BSD, or SYSV)? |
---|
| 446 | AC_MSG_CHECKING(what style of signals to use) |
---|
| 447 | if test $ac_cv_func_sigaction = yes -a $ac_cv_func_sigprocmask = yes; then |
---|
| 448 | signals_style=POSIX_SIGNALS |
---|
| 449 | AC_DEFINE(POSIX_SIGNALS) |
---|
| 450 | AC_DEFINE(RELIABLE_SIGNALS) |
---|
| 451 | elif test $ac_cv_func_sigblock = yes -a $ac_cv_func_sigsetmask = yes; then |
---|
| 452 | signals_style=BSD_SIGNALS |
---|
| 453 | AC_DEFINE(BSD_SIGNALS) |
---|
| 454 | AC_DEFINE(RELIABLE_SIGNALS) |
---|
| 455 | elif test $ac_cv_func_sighold = yes -a $ac_cv_func_sigrelse = yes; then |
---|
| 456 | signals_style=SYSV_SIGNALS |
---|
| 457 | AC_DEFINE(SYSV_SIGNALS) |
---|
| 458 | else |
---|
| 459 | signals_style=NO_SIGNAL_BLOCKING |
---|
| 460 | AC_DEFINE(NO_SIGNAL_BLOCKING) |
---|
| 461 | fi |
---|
| 462 | |
---|
| 463 | AC_MSG_RESULT($signals_style) |
---|
| 464 | |
---|
| 465 | dnl Where is <signal.h> located? Needed as input for signames.awk |
---|
| 466 | AC_CACHE_CHECK(where signal.h is located, nmh_cv_path_signal_h, |
---|
| 467 | [for SIGNAL_H in /usr/include/bsd/sys/signal.h dnl Next |
---|
| 468 | /usr/include/asm/signal.h dnl Linux 1.3.0 and above |
---|
| 469 | /usr/include/asm/signum.h dnl some versions of Linux/Alpha |
---|
| 470 | /usr/include/linux/signal.h dnl Linux up to 1.2.11 |
---|
| 471 | /usr/include/sys/signal.h dnl Almost everybody else |
---|
| 472 | /dev/null; dnl Just in case we fall through |
---|
| 473 | do |
---|
| 474 | test -f $SIGNAL_H && \ |
---|
| 475 | grep '#[ ]*define[ ][ ]*SIG[0-9A-Z]*[ ]*[0-9][0-9]*' $SIGNAL_H > /dev/null && \ |
---|
| 476 | break |
---|
| 477 | done |
---|
| 478 | nmh_cv_path_signal_h=$SIGNAL_H |
---|
| 479 | ]) |
---|
| 480 | SIGNAL_H=$nmh_cv_path_signal_h |
---|
| 481 | AC_SUBST(SIGNAL_H)dnl |
---|
| 482 | |
---|
| 483 | dnl ---------------- |
---|
| 484 | dnl OUTPUT MAKEFILES |
---|
| 485 | dnl ---------------- |
---|
| 486 | AC_OUTPUT(Makefile config/Makefile h/Makefile sbr/Makefile uip/Makefile \ |
---|
| 487 | zotnet/Makefile zotnet/mts/Makefile zotnet/tws/Makefile \ |
---|
| 488 | zotnet/mf/Makefile zotnet/bboards/Makefile mts/Makefile \ |
---|
| 489 | mts/smtp/Makefile mts/sendmail/Makefile mts/mmdf/Makefile \ |
---|
| 490 | etc/Makefile man/Makefile, \ |
---|
| 491 | [test -z "$CONFIG_HEADERS" || echo > stamp-h]) |
---|
| 492 | |
---|
| 493 | eval "nmhbin=${bindir}"; eval "nmhbin2=${nmhbin}" |
---|
| 494 | eval "nmhsysconf=${sysconfdir}"; eval "nmhsysconf2=${nmhsysconf}" |
---|
| 495 | eval "nmhlib=${libdir}"; eval "nmhlib2=${nmhlib}" |
---|
| 496 | eval "nmhman=${mandir}" |
---|
| 497 | |
---|
| 498 | echo " |
---|
| 499 | nmh configuration |
---|
| 500 | ----------------- |
---|
| 501 | nmh version : ${VERSION} |
---|
| 502 | compiler : ${CC} |
---|
| 503 | compiler flags : ${CFLAGS} |
---|
| 504 | linker flags : ${LDFLAGS} |
---|
| 505 | source code location : ${srcdir} |
---|
| 506 | binary install path : ${nmhbin2} |
---|
| 507 | libary install path : ${nmhlib2} |
---|
| 508 | config files install path : ${nmhsysconf2} |
---|
| 509 | man page install path : ${nmhman} |
---|
| 510 | transport system : ${MTS} |
---|
| 511 | default editor : ${editorpath} |
---|
| 512 | default pager : ${pagerpath}" |
---|
| 513 | echo "" |
---|