Coder Social home page Coder Social logo

rfdiazpr / upp-mirror Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 1.0 253.42 MB

Automatically exported from code.google.com/p/upp-mirror

C++ 69.31% Perl 6 0.48% C 29.20% Shell 0.11% TeX 0.01% KiCad Layout 0.01% Python 0.14% HTML 0.21% Makefile 0.25% Objective-C 0.04% Perl 0.02% PHP 0.06% Batchfile 0.01% Assembly 0.01% Groff 0.15% GLSL 0.01% JavaScript 0.01% Java 0.01%

upp-mirror's People

Stargazers

Roman avatar

Watchers

James Cloos avatar

Forkers

easonjx

upp-mirror's Issues

Welcome to U++ issue tracking.

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 May 2009 at 11:28

How-To make a (proper) Debian package

Hello,
I want to make a Debian package of U++ for the Ubuntu software page getdeb.net.
(https://bugs.launchpad.net/getdeb.net/+bug/456359)

As I see your linux_scripts/uppdeb script is not quite the proper way how
to make a Debian package :)

And it seems to me that you do not use a build system. And I did not find
compilation instructions.

So please can you help me compile the sources and make a Debian package ?

Original issue reported on code.google.com by [email protected] on 20 Oct 2009 at 7:57

Thread::GetD() error

According by this
http://www.ultimatepp.org/forum/index.php?t=msg&goto=30644&#msg_30644
link, you should to eliminate the thread_id initialization under POSIX:

Thread::Thread()
{
    sMutexLock();
#ifdef PLATFORM_WIN32
    handle = 0;
    thread_id = 0;
#endif
#ifdef PLATFORM_POSIX
    handle = 0;
==>remove this  thread_id = 0;
#endif
}

void Thread::Detach()
{
#if defined(PLATFORM_WIN32)
    if(handle) {
        CloseHandle(handle);
        handle = 0;
        thread_id = 0;
    }
#elif defined(PLATFORM_POSIX)
    if(handle) {
        CHECK(!pthread_detach(handle));
        handle = 0;
==>remove this  thread_id = 0;
    }
#endif
}

Thank you in advance.

Original issue reported on code.google.com by ionlupascu on 13 Jan 2011 at 2:15

download 1518 win32 corrupt

What steps will reproduce the problem?
1. downloading file

What is the expected output? What do you see instead?
incomplete download

What version of the product are you using? On what operating system?
mozilla firefox 
xp sp3

Please provide any additional information below.
the download doesn't work

Original issue reported on code.google.com by [email protected] on 19 Aug 2009 at 10:06

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.