Jason Tackaberry wrote:
> Author: tack
> Date: Mon Jul 31 01:49:32 2006
> New Revision: 1791
>
> Modified:
>    trunk/base/setup.py
>
> Log:
> Require glib.
>
>
> Modified: trunk/base/setup.py
> ==============================================================================
> --- trunk/base/setup.py       (original)
> +++ trunk/base/setup.py       Mon Jul 31 01:49:32 2006
> @@ -38,7 +38,10 @@
>  extensions = []
>  extensions.append(Extension('kaa.shmmodule', 
> ['src/extensions/shmmodule.c']).convert())
>  objectrow = Extension('kaa._objectrow', ['src/extensions/objectrow.c'])
> -objectrow.check_library("glib-2.0", "2.4.0")
> +if not objectrow.check_library("glib-2.0", "2.4.0"):
> +    print "glib >= 2.4.0 not found; devel package missing maybe?"
> +    sys.exit(1)
> +
>  extensions.append(objectrow.convert())

Maybe make it optional? Maybe the user of kaa.base does not need db.


Dischi

-- 
Drag me, drop me, treat me like an object!

Attachment: pgpjBDlXGqI60.pgp
Description: PGP signature

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to