Changes in / [4adc69b:13a39ae8]
- Files:
-
- 2 added
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r3624a2c r353719a 12 12 13 13 check_PROGRAMS = tester.bin 14 dist_check_DATA = t15 dist_check_SCRIPTS = runtests.sh16 17 bin_SCRIPTS = barnowl18 check_SCRIPTS = tester19 20 barnowl tester: %: barnowl-wrapper.in %.bin Makefile21 sed \22 -e 's,[@]abs_srcdir[@],$(abs_srcdir),g' \23 -e 's,[@]abs_builddir[@],$(abs_builddir),g' \24 $< > $@25 chmod +x $@26 14 27 15 barnowl_bin_SOURCES = $(BASE_SRCS) \ 28 owl.h owl_perl.h \29 owl.c 30 nodist_barnowl_bin_SOURCES =$(GEN_C) $(GEN_H)16 owl.h owl_perl.h config.h \ 17 owl.c \ 18 $(GEN_C) $(GEN_H) 31 19 32 dist_man_MANS = doc/barnowl.133 d ist_doc_DATA = doc/intro.txt doc/advanced.txt20 man_MANS = doc/barnowl.1 21 doc_DATA = doc/intro.txt doc/advanced.txt 34 22 35 23 barnowl_bin_LDADD = compat/libcompat.a libfaim/libfaim.a 36 24 37 25 tester_bin_SOURCES = $(BASE_SRCS) \ 38 owl.h owl_perl.h \ 26 owl.h owl_perl.h config.h \ 27 $(GEN_C) $(GEN_H) \ 39 28 tester.c 40 nodist_tester_bin_SOURCES = $(GEN_C) $(GEN_H)41 29 42 30 tester_bin_LDADD = compat/libcompat.a libfaim/libfaim.a … … 44 32 TESTS=runtests.sh 45 33 46 AM_CPPFLAGS = \34 AM_CPPFLAGS = -I$(top_srcdir)/ \ 47 35 -I$(top_srcdir)/libfaim/ \ 48 36 -DDATADIR='"$(pkgdatadir)"' \ … … 60 48 mainpanel.c msgwin.c sepbar.c editcontext.c signal.c closures.c 61 49 62 NORMAL_SRCS = filterproc.c filterproc.h window.c window.hwindowcb.c50 NORMAL_SRCS = filterproc.c window.c windowcb.c 63 51 64 52 BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS) 65 53 66 54 GEN_C = varstubs.c perlglue.c gmarshal_funcs.c 67 GEN_H = owl_prototypes.h owl_prototypes.h.newgmarshal_funcs.h55 GEN_H = owl_prototypes.h gmarshal_funcs.h 68 56 69 57 BUILT_SOURCES = $(GEN_C) $(GEN_H) … … 78 66 proto: owl_prototypes.h 79 67 80 perlglue.c: perlglue.xs typemap81 $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes $< > $@68 perlglue.c: perlglue.xs $(TYPEMAP) 69 $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c 82 70 83 71 varstubs.c: stubgen.pl variable.c … … 96 84 $(COMPILE) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES) 97 85 86 install-data-local: 87 $(mkinstalldirs) ${DESTDIR}${pkgdatadir}/lib 88 (cd perl/lib && tar -cf - . ) | (cd ${DESTDIR}${pkgdatadir}/lib && tar -xf - ) 89 98 90 do_transform = $(shell echo '$(1)' | sed '$(transform)') 99 91 install-exec-hook: … … 101 93 $(DESTDIR)$(bindir)/$(call do_transform,barnowl) 102 94 103 uninstall-local:104 rm -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl)105 106 CLEANFILES = $(BUILT_SOURCES) $(bin_SCRIPTS) $(check_SCRIPTS)107 EXTRA_DIST = \108 autogen.sh \109 barnowl-wrapper.in \110 codelist.pl \111 doc \112 examples \113 marshal_types \114 perlglue.xs \115 scripts \116 stubgen.pl \117 typemap118 119 95 SUBDIRS = compat libfaim perl -
compat/Makefile.am
rb80bae0 r12a6616 1 1 noinst_LIBRARIES = libcompat.a 2 2 3 libcompat_a_SOURCES = compat.h3 libcompat_a_SOURCES = 4 4 libcompat_a_LIBADD = $(LIBOBJS) -
compat/compat.h
r6249a88f r4dde585 2 2 #define INC_BARNOWL_COMPAT_COMPAT_H 3 3 4 #include <config.h>4 #include "../config.h" 5 5 6 6 #include <stddef.h> -
configure.ac
reb5e8fc r06e04a9 100 100 dnl Find the location of perl XSUBPP 101 101 AC_MSG_CHECKING(for the perl xsubpp precompiler) 102 XSUBPPDIR="` cd "$srcdir" && perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;'| grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`"102 XSUBPPDIR="`(perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;') | grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`" 103 103 if test -n "${XSUBPPDIR}"; then 104 104 AC_MSG_RESULT(${XSUBPPDIR}) -
filterproc.c
r7155955 r3496369 1 #include " filterproc.h"1 #include "owl.h" 2 2 #include <sys/wait.h> 3 #include <fcntl.h>4 #include <glib.h>5 3 #include <poll.h> 6 #include <string.h>7 #include <unistd.h>8 4 9 5 /* Even in case of error, send_receive is responsible for closing wfd -
libfaim/Makefile.am
rb80bae0 r215c119 13 13 libfaim_a_CPPFLAGS = -DAIM_BUILDDATE=\"x\" -DAIM_BUILDTIME=\"x\" \ 14 14 -I${top_srcdir}/libfaim 15 16 EXTRA_DIST = oscar.c -
owl.h
r6249a88f rbbc31e4 10 10 #define INC_BARNOWL_OWL_H 11 11 12 #include <config.h>12 #include "config.h" 13 13 14 14 #include "compat/compat.h" … … 608 608 extern owl_global g; 609 609 610 #include <owl_prototypes.h>610 #include "owl_prototypes.h" 611 611 612 612 /* These were missing from the Zephyr includes before Zephyr 3. */ -
perl/Makefile.am
ra870319 r10557e6 1 1 SUBDIRS = modules 2 nobase_dist_pkgdata_DATA = \3 lib/BarnOwl.pm \4 lib/BarnOwl/Complete/AIM.pm \5 lib/BarnOwl/Complete/Client.pm \6 lib/BarnOwl/Complete/Filter.pm \7 lib/BarnOwl/Complete/Zephyr.pm \8 lib/BarnOwl/Completion.pm \9 lib/BarnOwl/Completion/Context.pm \10 lib/BarnOwl/Completion/Util.pm \11 lib/BarnOwl/Editwin.pm \12 lib/BarnOwl/Help.pm \13 lib/BarnOwl/Hook.pm \14 lib/BarnOwl/Hooks.pm \15 lib/BarnOwl/MainLoopCompatHook.pm \16 lib/BarnOwl/Message.pm \17 lib/BarnOwl/Message/AIM.pm \18 lib/BarnOwl/Message/Admin.pm \19 lib/BarnOwl/Message/Generic.pm \20 lib/BarnOwl/Message/Loopback.pm \21 lib/BarnOwl/Message/Zephyr.pm \22 lib/BarnOwl/ModuleLoader.pm \23 lib/BarnOwl/Parse.pm \24 lib/BarnOwl/Style.pm \25 lib/BarnOwl/Style/Basic.pm \26 lib/BarnOwl/Style/Default.pm \27 lib/BarnOwl/Style/Legacy.pm \28 lib/BarnOwl/Style/OneLine.pm \29 lib/BarnOwl/Timer.pm \30 lib/BarnOwl/Zephyr.pm \31 lib/Module/Install/BarnOwl.pm -
perl/modules/Makefile.am
reb5e8fc r35c5bd8 2 2 3 3 EXTRA_DIST = $(MODULES:=/Makefile.PL) $(MODULES:=/inc) $(MODULES:=/lib) 4 EXTRA_DIST += \5 Facebook/README \6 Twitter/README \7 Twitter/twitter.example8 4 9 5 all-local: $(MODULES) … … 13 9 MODULES_MAKEFILE = $(MODULES:=/Makefile) 14 10 $(MODULES_MAKEFILE): %/Makefile: %/Makefile.PL 15 [ $(srcdir) = . ] || cp -srf --no-preserve=mode -- $(abs_srcdir)/$*/. $*16 11 $(AM_V_GEN)(cd $* && perl -I../../lib Makefile.PL) 17 12 … … 19 14 clean-local: $(MODULES_CLEAN) 20 15 $(MODULES_CLEAN): clean_%: 21 if [ $(srcdir) = . ]; then \ 22 (cd $* && { test ! -f Makefile || $(MAKE) realclean; }) && \ 23 rm -f $*/$*.par; \ 24 else \ 25 rm -rf $*; \ 26 fi 16 (cd $* && (test ! -f Makefile || $(MAKE) clean)) 27 17 28 18 MODULES_INSTALL = $(MODULES:%=module_install_%) … … 33 23 ${INSTALL_DATA} $*/$*.par ${DESTDIR}${pkgdatadir}/modules/$*.par 34 24 35 uninstall-local:36 rm -f $(MODULES:%=${DESTDIR}${pkgdatadir}/modules/%.par)37 38 25 .PHONY: $(MODULES) $(MODULES_CLEAN) $(MODULES_INSTALL) -
runtests.sh
r5db8835 rf6ab6ee 1 1 #!/bin/sh 2 exec env HARNESS_PERL=./tester prove --failures "${srcdir:=$(dirname "$0")}/t/"2 exec env HARNESS_PERL=./tester prove --failures t/ -
t/00-core-tests.t
r5db8835 r95414bf 1 1 #!/usr/bin/env perl 2 system("./tester", "--builtin"); 2 use File::Basename; 3 system(dirname($0) . "/../tester", "--builtin"); -
zcrypt.c
r6249a88f rd72ba1e 17 17 #include <ctype.h> 18 18 19 #include <config.h>19 #include "config.h" 20 20 21 21 #ifdef HAVE_KERBEROS_IV
Note: See TracChangeset
for help on using the changeset viewer.