Upgrade autoconf to version 2.69 and adjust the patch only to deal
with the different line number.
ClosesHomebrew/homebrew#11866.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Upgrade phoronix-test-suite to version 3.8.0.
Change patch to support the changes within `install.sh`
* Put metafiles in prefix
* Add `.bash` to the bash-completion script name
* Change the XDG MIME Openbenchmarking conditional from `DESTDIR`
to `INSTALL_PREFIX` so that all the files it uses get copied into
the Cellar, because Macs don't run `xdg-utils`. This makes that
conditional behave as if Phoronix is being installed into a chroot.
* Remove the `-e` from echo so that it doesn't get echoed.
ClosesHomebrew/homebrew#11847.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Typespeed-0.6.5 stopped development in 2008 but hard-codes `gcc`
into two of their Makefiles. Use `ENV.cc` instead. Tested on
Lion with clang and llvm-gcc. Typespeed also does a `chgrp games`
Even though that group will likely not exist, the software still
works without error because the owner is correct, and the `chgrp`
does not stop the build if it is unsuccessful.
ClosesHomebrew/homebrew#11848.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
[jn: no-asm is to fix compilation on 64-bit; perhaps it is not needed on
32-bit, but I didn't test it and I don't think its that important.]
ClosesHomebrew/homebrew#11821.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Upgrade clamav to version 0.97.4. If check is installed, this
will pass all its self tests using clang or llvm from XC-4.3.2.
Remove the --disable-debug, which is the default behavior.
ClosesHomebrew/homebrew#11840.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Installation of the GLw library compiled against the OS X version of
OpenGL libraries. Version 7.2 is considered by many (e.g. Fink, Ubuntu)
to be the stable version of MesaLib. GLw is not provided with OS X.
By default, MesaLib first compiles GL(mesa) and then GLw against it.
This forces that any application compiled against GLw will also need
to be linked with GL(mesa), not the native OS X version of OpenGL,
since otherwise you get a version incompatibility error.
In order to avoid having a duplicated version of the OpenGL library,
and also to take advantage of any hardware acceleration that the OS X
OpenGL version could provide, it is best to compile the GLw library
against the provided OS X OpenGL library. For this purpose, some
modifications to the autoconf setting file and the GLw Makefile
were performed. In particular, the inclusion of the OS X OpenGL header
files (located in /usr/X11/include/GL) instead of the header files
provided with the mesalib package, and the linkage against the OS X
OpenGL libraries (located in /usr/X11/lib). The compilation of the
GL(mesa) libraries was also removed from the autoconf settings file.
The installation of the package files is performed manually since the
'make install' fails due to a bad detection of symbolic links.
ClosesHomebrew/homebrew#6074.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Reviewed most patches (minus the UB stuff), fixed bugs, sent
patches upstream, updated to 2.32.1.
ClosesHomebrew/homebrew#11279.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
The bottle was linked against libunistring, which is not a hard
dependency but gets picked up by the build if its present; this results
in breakage on systems where libunistring is not installed.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>