summaryrefslogtreecommitdiff
path: root/misc/Makefile.common
AgeCommit message (Collapse)Author
2008-11-19Create a new macro CC_NOUNDEFINED to check for the -z defs flag orDiego E. 'Flameeyes' Pettenò
equivalent. I wanted this because I'm going to reuse attribute.m4 with that macro for a couple other projects. This also removes AC_TRY_LDFLAGS since it's not used any longer (replaced by CC_CHECK_LDFLAGS, which also caches results).
2008-04-14Fix build with srcdir != builddir.Diego 'Flameeyes' Pettenò
2007-04-06Now that all plugins install using xineplug_LTLIBRARIES, avoid greppingDiego 'Flameeyes' Pettenò
libdir for plugins installation. With this change, it avoids running an egrep command for every directory at uninstall time; the for has way less impact as the list can just be empty.
2007-04-06Properly use chcon over only xineplug and xinepost libraries.Diego 'Flameeyes' Pettenò
This reduces the number of objects that are allowed to contain TEXT section relocations (skipping for instance libxine and the vidix drivers). This is still suboptimal because only those plugins that actually contains text relocation should be allowed to contain them (that is what is done with IMPURE_TEXT_LDFLAGS for Solaris and Darwin).
2007-04-06Similarly, add a vidix_LTLIBRARIES class to install the vidix drivers in the ↵Diego 'Flameeyes' Pettenò
correct location.
2007-04-06Define a xinepostdir directory to point to the post-plugins path.Diego 'Flameeyes' Pettenò
Together with this, define a xinepost_LTLIBRARIES class that is used to install the post-plugins in the correct directory. Also add the rule to remove them.
2007-04-04Properly uninstall plugins installed through xineplug_LTLIBRARIES.Diego 'Flameeyes' Pettenò
As we remove the .la files from libtool, the default uninstall targets will not work for the plugins, so we have to remove them by hand. When all the plugins will be migrated to xineplug_LTLIBRARIES, we can remove the egrep call and that part of the code.
2007-03-22Instead of rewriting the install and uninstall rules for headers, simply ↵Diego 'Flameeyes' Pettenò
change their class to xineinclude, and set xineincludedir in Makefile.common. CVS patchset: 8737 CVS date: 2007/03/22 17:37:17
2007-03-10Quote id -u usage so that it doesn't throw an error in Solaris older than ↵Diego 'Flameeyes' Pettenò
11. Patch by Albert Lee. CVS patchset: 8654 CVS date: 2007/03/10 00:17:29
2007-02-21Make -Wl,-z,defs an opt-in ldflag, if available. The $(xineplug_ldflags) ↵Diego 'Flameeyes' Pettenò
variable can be injected in _LDFLAGS for the xine plugins, and already provides -avoid-version -module and -Wl,-z,defs if supported. Right now only wavpack plugin actually make use of this but that can be fixed as the Makefiles are edited. CVS patchset: 8618 CVS date: 2007/02/21 23:07:45
2007-01-23Add xineplugdir variable so that the makefiles installing plugins can simply ↵Diego 'Flameeyes' Pettenò
use xineplug_LTLIBRARIES without having to reset libdir every time. CVS patchset: 8546 CVS date: 2007/01/23 16:50:11
2007-01-19LIBTOOL is already defined by.. err.. libtool, no need to repeat here.Diego 'Flameeyes' Pettenò
CVS patchset: 8535 CVS date: 2007/01/19 03:04:11
2006-07-11Correct remaining references to libtool-nofpic.Darren Salt
CVS patchset: 8119 CVS date: 2006/07/11 22:35:25
2006-06-18- don't stop the installation if the chcon doesn't work forBastien Nocera
whatever reason CVS patchset: 8058 CVS date: 2006/06/18 21:13:29
2006-01-22- Fix error when the file didn't already have an SELinux contextBastien Nocera
chcon: can't apply partial context to unlabeled file /opt/lib/libxine.so CVS patchset: 7840 CVS date: 2006/01/22 23:25:19
2006-01-22- fix installation when the user isn't rootBastien Nocera
CVS patchset: 7839 CVS date: 2006/01/22 19:48:09
2006-01-17**BUGFIX**Bastien Nocera
Avoid the "cannot restore segment prot after reloc: Permission denied" error message for quite a few plugins by setting the texrel_shlib_t context on all the plugins at installation time CVS patchset: 7836 CVS date: 2006/01/17 20:51:46
2004-12-01mkinstalldirs script is obsoleted in automake. Using "install-sh -d" instead.František Dvořák
CVS patchset: 7181 CVS date: 2004/12/01 20:26:45
2004-09-05autogen.sh:Stephen Torri
Fix what I perceive to be a bug only on platforms that have a automake installed that contains multiple version. Gentoo releases a package of automake that contains all the latest stable version (1.4 to 1.8). In order to use a specific one besides the default you need to declare WANT_AUTOMAKE=1.6 in your environment varibles. ------------------------------------ doc/faq/Makefile.am doc/hackersguide/Makefile.am Applied Frantisek Dvorak changes for the documentation. CVS patchset: 6939 CVS date: 2004/09/05 02:14:38
2003-11-12Ohoh, it seems i've happily broke the "uninstall" stage when i hacked theDaniel Caujolle-Bert
libtool to made it not install .la file. Here's the fix. CVS patchset: 5728 CVS date: 2003/11/12 20:24:42
2003-10-14made libtool-nofpic silent and not installing .la files at allDaniel Caujolle-Bert
CVS patchset: 5519 CVS date: 2003/10/14 21:58:22
2003-10-13strange things are going on...Michael Roitzsch
CVS patchset: 5511 CVS date: 2003/10/13 17:43:37
2003-10-13when using find to delete *.la, this is uselessMichael Roitzsch
CVS patchset: 5508 CVS date: 2003/10/13 16:25:55
2003-10-13Add vcdx plugin(CVS) and dependent libs(no CVS, broken API).Daniel Caujolle-Bert
Ability to use external libs (--with-external-vcdnav), disable vcdx build and build old vcd instead (--disable-vcdx). This last feature is useful since vcdx take /hours/ to start playback, that can help people who don't want vcd navigation. Remove all .la files, even in subdirs (eg: post) CVS patchset: 5505 CVS date: 2003/10/13 11:47:11
2003-07-12- adding support for the Intel compiler iccMichael Roitzsch
- general multipass compilation make targets CVS patchset: 5149 CVS date: 2003/07/12 12:31:13
2003-06-27fix post install target: when doing a "make install" from withinMichael Roitzsch
some subdirectories (those which have subdirs themselves), the post install procedure would not be executed properly CVS patchset: 5103 CVS date: 2003/06/27 12:29:17
2003-05-30sorry for forcing another complete rebuild, but $(DESTDIR) is clearly needed ↵Michael Roitzsch
here (thanks to Carsten Weinhold for noticing) CVS patchset: 4986 CVS date: 2003/05/30 13:06:57
2003-05-29remove the .la files from the plugindir after installMichael Roitzsch
CVS patchset: 4982 CVS date: 2003/05/29 13:09:36
2003-05-14as announced on xine-devel, this is the big Makefile refactoring:Michael Roitzsch
extracted some common targets and variables into a common Makefile which is then included CVS patchset: 4844 CVS date: 2003/05/14 16:21:44