mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
Fixed java includes - java bindings now compile
This commit is contained in:
parent
505155d995
commit
91f4500503
@ -1,7 +1,7 @@
|
||||
top_srcdir = @top_srcdir@
|
||||
prefix = @prefix@
|
||||
|
||||
CFLAGS = $(subst -Werror,,@CFLAGS@)
|
||||
CFLAGS = $(subst -Werror,,@CFLAGS@) -I$(JAVA_HOME)/include/ -I$(JAVA_HOME)/include/linux/
|
||||
CFLAGS += -fno-strict-aliasing # see the swig docs
|
||||
ifeq ($(shell arch),x86_64)
|
||||
CFLAGS += -fPIC
|
||||
|
@ -1,23 +0,0 @@
|
||||
#if defined(SWIGPERL)
|
||||
%module "Alpm::Core"
|
||||
#else
|
||||
%module alpm
|
||||
#endif
|
||||
%include "cpointer.i"
|
||||
|
||||
/* Wrap a class interface around a "long *" */
|
||||
%pointer_class(long, longp);
|
||||
|
||||
/* Create casting functions */
|
||||
|
||||
%pointer_cast(char *, long *, void_to_long);
|
||||
%pointer_cast(void *, char *, void_to_char);
|
||||
%pointer_cast(void *, unsigned long, void_to_unsigned_long);
|
||||
%pointer_cast(void *, PM_LIST *, void_to_PM_LIST);
|
||||
%pointer_cast(void *, PM_PKG *, void_to_PM_PKG);
|
||||
%pointer_cast(void *, PM_GRP *, void_to_PM_GRP);
|
||||
%pointer_cast(void *, PM_SYNCPKG *, void_to_PM_SYNCPKG);
|
||||
%pointer_cast(void *, PM_DB *, void_to_PM_DB);
|
||||
%pointer_cast(void *, PM_CONFLICT *, void_to_PM_CONFLICT);
|
||||
|
||||
%include "alpm.h"
|
@ -1,23 +0,0 @@
|
||||
#if defined(SWIGPERL)
|
||||
%module "Alpm::Core"
|
||||
#else
|
||||
%module alpm
|
||||
#endif
|
||||
%include "cpointer.i"
|
||||
|
||||
/* Wrap a class interface around a "long *" */
|
||||
%pointer_class(long, longp);
|
||||
|
||||
/* Create casting functions */
|
||||
|
||||
%pointer_cast(char *, long *, void_to_long);
|
||||
%pointer_cast(void *, char *, void_to_char);
|
||||
%pointer_cast(void *, unsigned long, void_to_unsigned_long);
|
||||
%pointer_cast(void *, PM_LIST *, void_to_PM_LIST);
|
||||
%pointer_cast(void *, PM_PKG *, void_to_PM_PKG);
|
||||
%pointer_cast(void *, PM_GRP *, void_to_PM_GRP);
|
||||
%pointer_cast(void *, PM_SYNCPKG *, void_to_PM_SYNCPKG);
|
||||
%pointer_cast(void *, PM_DB *, void_to_PM_DB);
|
||||
%pointer_cast(void *, PM_CONFLICT *, void_to_PM_CONFLICT);
|
||||
|
||||
%include "alpm.h"
|
Loading…
Reference in New Issue
Block a user