Changeset 37f27bc
- Timestamp:
- Jul 17, 2009, 9:44:39 PM (16 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 0ce0535
- Parents:
- 4f0a2ee
- git-author:
- Nelson Elhage <nelhage@mit.edu> (06/01/09 15:28:35)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (07/17/09 21:44:39)
- Files:
-
- 3 added
- 5 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rd5ef539 r37f27bc 4 4 *~ 5 5 .#* 6 .deps 6 7 META.yml 7 8 Makefile 9 /Makefile.in 10 /libfaim/Makefile.in 8 11 Makefile.old 9 12 TAGS … … 20 23 configure 21 24 core 25 depcomp 26 install-sh 22 27 jabber.log 28 missing 23 29 owl_prototypes.h 24 30 owl_prototypes.h.new … … 26 32 perlwrap.c 27 33 pm_to_blib 34 stamp-h1 28 35 tester 29 36 varstubs.c -
autogen.sh
r130479b r37f27bc 1 1 #!/bin/sh 2 autoreconf 2 autoreconf -fvi 3 -
configure.ac
rc50f589 r37f27bc 1 1 dnl $Id$ 2 2 dnl Process this file with autoconf to produce a configure script. 3 AC_INIT(owl.c) 3 AC_INIT([BarnOwl],[1.1.2],[bug-barnowl@mit.edu]) 4 AM_INIT_AUTOMAKE([-Wall foreign]) 4 5 5 AC_CONFIG_HEADER( config.h)6 AC_CONFIG_HEADER([config.h]) 6 7 7 8 AC_PROG_CC 8 9 dnl If we're using GCC, enable all warnings10 if test "$GCC" = yes; then11 CFLAGS="$CFLAGS -Wall -g";12 fi13 9 14 10 dnl Check for Athena … … 125 121 LDFLAGS="${GLIB_LIBS} ${LDFLAGS}" 126 122 123 if test "x${prefix}" = "xNONE"; then 124 prefix="${ac_default_prefix}" 125 fi 126 127 AC_DEFINE_UNQUOTED([DATADIR],["${prefix}/share/${PACKAGE}"], 128 [Package data directory]) 129 127 130 dnl Checks for typedefs, structures, and compiler characteristics. 128 129 dnl Support --program-{prefix,suffix,transform}130 AC_ARG_PROGRAM131 131 132 132 AC_SUBST(XSUBPPDIR) … … 135 135 136 136 AC_PROG_INSTALL 137 AC_PROG_RANLIB 137 138 138 AC_CONFIG_SUBDIRS(libfaim) 139 140 AC_OUTPUT(Makefile) 139 AC_CONFIG_FILES([Makefile libfaim/Makefile]) 140 AC_OUTPUT([perl/modules/Makefile]) -
owl.h
rbd783db r37f27bc 48 48 static const char owl_h_fileIdent[] = "$Id$"; 49 49 50 #define BARNOWL_STRINGIFY(x) _STRINGIFY(x) 51 #define _STRINGIFY(x) #x 52 53 #ifndef OWL_VERSION_STRING 54 #define OWL_VERSION_STRING "1.1.2" 55 #endif 50 #define OWL_VERSION_STRING PACKAGE_VERSION 56 51 57 52 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.